home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / Bitmap / Sources / Bitmap.hpp < prev    next >
Encoding:
Text File  |  1996-08-16  |  1.9 KB  |  132 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Bitmap.hpp
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef BITMAP_HPP
  11. #define BITMAP_HPP
  12.  
  13. #ifdef FW_BUILD_WIN
  14.  
  15. #pragma warning(disable:4190)
  16.  
  17. // ----- ODF (Foundation) Includes -----
  18.  
  19. #ifndef FWCOMMON_H
  20. #include "FWCommon.h"
  21. #endif
  22.  
  23. #ifndef FWMEMORY_H
  24. #include "FWMemory.h"
  25. #endif
  26.  
  27. #ifndef FWSTRING_H
  28. #include "FWString.h"
  29. #endif
  30.  
  31. #ifndef FWSTREAM_H
  32. #include "FWStream.h"
  33. #endif
  34.  
  35. #ifndef FWREFCNT_H
  36. #include "FWRefCnt.h"
  37. #endif
  38.  
  39. #ifndef FWEXCLIB_H
  40. #include "FWExcLib.h"
  41. #endif
  42.  
  43. #ifndef FWRUNTYP_H
  44. #include "FWRunTyp.h"
  45. #endif
  46.  
  47. #ifndef FWDEBUG_H
  48. #include "FWDebug.h"
  49. #endif
  50.  
  51. #ifndef FWTASKG_H
  52. #include "FWTaskG.h"
  53. #endif
  54.  
  55. #ifndef FWCOLLEC_H
  56. #include "FWCollec.h"
  57. #endif
  58.  
  59. // ----- OpenDoc includes
  60.  
  61. #ifndef FWODTYPS_H
  62. #include "FWODTyps.h"
  63. #endif
  64.  
  65. #ifndef _ODUTILS_
  66. #include "ODUtils.h"
  67. #endif
  68.  
  69. #ifndef SOM_ODFacet_xh
  70. #include "Facet.xh"
  71. #endif
  72.  
  73. #ifndef SOM_ODFrame_xh
  74. #include "Frame.xh"
  75. #endif
  76.  
  77. #ifndef SOM_ODInfo_xh
  78. #include "Info.xh"
  79. #endif
  80.  
  81. #ifndef SOM_ODFocusSet_xh
  82. #include "FocusSet.xh"
  83. #endif
  84.  
  85. #ifndef SOM_ODStdProps_xh
  86. #include "StdProps.xh"
  87. #endif
  88.  
  89. #ifndef SOM_Module_5codsom5cinterfac5ccplus5cmachinem5cFOCI_OpenDoc_Foci_defined
  90. #include "Foci.xh"
  91. #endif
  92.  
  93. #ifndef SOM_ODArbitrator_xh
  94. #include "Arbitrat.xh"
  95. #endif
  96.  
  97. #ifndef SOM_ODMenuBar_xh
  98. #include "MenuBar.xh"
  99. #endif
  100.  
  101. #ifndef SOM_ODSession_xh
  102. #include "ODSessn.xh"
  103. #endif
  104.  
  105. #ifndef SOM_ODStorageUnit_xh
  106. #include "Storageu.xh"
  107. #endif
  108.  
  109. #ifndef SOM_ODWindowState_xh
  110. #include "winstat.xh"
  111. #endif
  112.  
  113. #ifndef SOM_ODWindow_xh
  114. #include "window.xh"
  115. #endif
  116.  
  117. #ifndef SOM_ODShape_xh
  118. #include "shape.xh"
  119. #endif
  120.  
  121. #ifndef SOM_ODFrameFacetIterator_xh
  122. #include "frfaitr.xh"
  123. #endif
  124.  
  125. #ifndef SOM_ODCanvas_xh
  126. #include "canvas.xh"
  127. #endif
  128.  
  129. #endif
  130.  
  131. #endif // ODFBMAP_HPP
  132.